home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Games / NetHack 3.1.3 / source / include / spell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-01  |  326 b   |  15 lines  |  [TEXT/R*ch]

  1. /*    SCCS Id: @(#)spell.h    3.1    90/22/02    */
  2. /* Copyright 1986, M. Stephenson                  */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef SPELL_H
  6. #define SPELL_H
  7.  
  8. struct spell {
  9.     int    sp_id;            /* spell id */
  10.     int    sp_lev;            /* power level */
  11.     int    sp_uses;        /* uses left to spell */
  12. };
  13.  
  14. #endif /* SPELL_H */
  15.